home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / packet / p_aa4re / bb212src / ascii.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1989-12-26  |  1.7 KB  |  25 lines

  1. (*===========================================================================*)
  2. (* ASCII Character constants                                                 *)
  3. (*                                                                           *)
  4. (*   Copyright 1988 by H. Roy Engehausen.  All rights reserved.              *)
  5. (*   This software may be freely distributed and used, but it may not        *)
  6. (*   under any circumstances be sold by anyone other than the author.        *)
  7. (*   It may be distributed by a commercial company as long as it is          *)
  8. (*   for no cost.                                                            *)
  9. (*                                                                           *)
  10. (*===========================================================================*)
  11.  
  12. CONST
  13.   soh               = #$01;              (* Start header                     *)
  14.   bell              = #$07;              (* Ring Bell                        *)
  15.   bs                = #$08;              (* Backspace                        *)
  16.   lf                = #$0A;              (* Line feed                        *)
  17.   cr                = #$0D;              (* Carriage return                  *)
  18.   dle               = #$10;              (* Data link escape                 *)
  19.   etb               = #$17;              (* End text block                   *)
  20.   up_arrow          = #$18;              (* Up arrow                         *)
  21.   down_arrow        = #$19;              (* Down arrow                       *)
  22.   eof_chr           = #$1A;              (* End of file                      *)
  23.   escape            = #$1B;              (* Escape                           *)
  24.  
  25.